41e5f5770d34909efae68a70d67087275682dc8d,src/test/java/com/elopteryx/paint/upload/UploadParserTest.java,UploadParserTest,use_the_full_api,#,61
Before Change
.onError(this)
.sizeThreshold(() -> random.nextInt(1024 * 1024 * 10))
.maxPartSize(() -> random.nextInt(1024 * 1024 * 50))
.maxRequestSize(() -> random.nextInt(1024 * 1024 * 50))
.setup();
}
@Override
After Change
.onError(this)
.sizeThreshold(() -> random.nextInt(1024 * 1024 * 10))
.maxPartSize(() -> random.nextInt(1024 * 1024 * 50))
.maxRequestSize(() -> random.nextInt(1024 * 1024 * 50));
}
@Override